home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2000 July / macformat-092.iso / Dreamweaver 3 / Configuration / Objects / Invisibles / Script.js < prev   
Encoding:
Text File  |  1999-12-01  |  705 b   |  20 lines

  1. // Copyright 1999 Macromedia, Inc. All rights reserved.
  2.  
  3. //---------------   GLOBAL VARIABLES   ---------------
  4.  
  5. var helpDoc = MM.HELP_objScript;
  6.  
  7. //---------------     API FUNCTIONS    ---------------
  8.  
  9. function objectTag() {
  10. // Return the html tag that should be inserted
  11.   var len = document.forms[0].script.value.length;
  12.   var selInd = document.forms[0].Language.selectedIndex;
  13.   var scriptLang = document.forms[0].Language.options[selInd].text
  14.   
  15.   if (len > 0 && document.forms[0].script.value.charAt(len - 1) != '\n')
  16.     document.forms[0].script.value = document.forms[0].script.value + '\n';
  17.     
  18.   return '<script language="' + scriptLang + '">\n' + document.forms[0].script.value + '<\/SCRIPT>';
  19. }
  20.